/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f7f5;
  color: #222;
  padding-top: 80px; /* Navbar height */
}

 .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background-color: #0b130a;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('/images/file_00000000b49072069cbbef54a149a06e.png') no-repeat center center/cover;
            transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
            z-index: 0;
        }

        .hero-section:hover .hero-bg {
            transform: scale(1.1);
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(11, 19, 10, 0.8));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            color: white;
        }

        .premium-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 15px;
            color: #f0fff0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

/* Services container */
:root {
  --primary-leaf: #2ecc71;
  --deep-forest: #1b3022;
  --earth-brown: #3d2b1f;
  --golden-crop: #f1c40f;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #82d69e 0%, #2c5137 50%, #3d2b1f 100%);
  font-family: 'Poppins', sans-serif;
}

.service-card {
  position: relative;
  border-radius: 28px;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transition: transform 1s ease;
  z-index: 1;
}

.service-card:hover .card-bg {
  transform: scale(1.1);
  filter: brightness(0.3);
}

.card-content {
  position: relative;
  z-index: 2;
  /* Dark Green-Black ko hata kar White-Green Mix Transparency */
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  /* Halka sa inner glow dene ke liye border */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  
  padding: 30px;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.service-card h2 {
  color: var(--golden-crop);
  margin: 0 0 10px 0;
  font-size: 1.6rem;
}

/* Desktop Hover Animation */
.details-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}

.service-card:hover .details-wrapper {
  max-height: 2000px; /* Saari details dikhane ke liye */
  opacity: 1;
  margin-top: 15px;
}

.service-card:hover .card-content {
  /* Hover par halka sa dark shade taki text gold color mein chamke */
  background: rgba(0, 0, 0, 0.4); 
}

.details-wrapper h3 {
  color: var(--primary-leaf);
  font-size: 0.95rem;
  margin: 15px 0 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.service-card p {
  color: #ffffff;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* List items hover effect maintain rahega */
.details-wrapper ul li:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--golden-crop) !important;
}

.details-wrapper h3::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--golden-crop);
  transition: width 0.4s ease;
}

.service-card:hover h3::after {
  width: 100%;
}

.details-wrapper ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.details-wrapper ul li {
  color: #ececec;
  font-size: 0.85rem;
  padding: 3px 0 3px 22px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border-radius: 4px;
}

.details-wrapper ul li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  transform: scale(1.3) rotate(15deg);
  filter: drop-shadow(0 0 5px var(--primary-leaf));
  transition: 0.3s ease;
}
.service-card:hover p {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.details-wrapper {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-leaf) transparent;
}

/* Mobile: Hamesha open aur slide-in animation */
@media (max-width: 768px) {
  .details-wrapper {
    max-height: none;
    opacity: 1;
    margin-top: 20px;
  }
  .service-card {
    animation: slideUpMobile 0.8s ease-out forwards;
  }
}

@keyframes slideUpMobile {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Footer */
footer {
  background-color: #083f16;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
}


  .premium-footer {
    background: #0d1b15;
    color: #ffffff;
    padding: 30px 20px 15px; /* Height choti karne ke liye compact padding */
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-overlay {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo - Height Adjusted */
.footer-logo img {
    height: 102px; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-logo:hover img { transform: scale(1.1); }

/* Contact Links with Hover Effects */
.footer-info-center { margin-bottom: 20px; }
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.contact-item i { color: #40916c; font-size: 1.2rem; }
.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Underline Hover Effect */
.hover-underline { position: relative; }
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background-color: #40916c;
    transition: width 0.3s ease;
}
.hover-underline:hover { color: #ffffff; }
.hover-underline:hover::after { width: 100%; }

.contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social Icons (Super Hover) */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-btn:hover {
    background: #40916c;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(64, 145, 108, 0.4);
}

/* Compact Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    margin: 20px 0 10px;
}
.footer-nav a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
.footer-nav a:hover { color: #40916c; letter-spacing: 1px; }

/* Bottom Section */
.footer-bottom {
    font-size: 0.75rem;
    color: #718096;
    padding-top: 10px;
}
.footer-bottom span { color: #40916c; font-weight: 700; }
.footer-bottom a { color: #40916c; text-decoration: none; font-weight: bold; }

/* Mobile View */
@media (max-width: 768px) {
    .contact-row { flex-direction: column; gap: 5px; }
    .footer-nav { gap: 10px; }
}

 